home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / programming / gui / precog2_1.lha / Precognition2_1 / src / src.lha / Precognition / GelsSystem.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-12-28  |  532 b   |  24 lines

  1. #ifndef GELSSYSTEM_H
  2. #define GELSSYSTEM_H
  3.  
  4. #include <exec/types.h>
  5. #include <intuition/intuition.h>
  6. #include <graphics/gels.h>
  7.  
  8. typedef struct GelsSystem
  9.    {
  10.       struct GelsInfo  GelsInfo;
  11.       LONG             nextLine[8];
  12.       LONG             lastColor[8];
  13.       struct collTable collHandler;
  14.       struct VSprite   vsHead;
  15.       struct VSprite   vsTail;
  16.    } GelsSystem;
  17.  
  18.  
  19. void GelsSystem_Init( GelsSystem      *gs, 
  20.                       struct RastPort *RPort, 
  21.                       BYTE             reserved );
  22.  
  23. #endif
  24.